home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue37 / DynArr / Array4.dpr < prev    next >
Encoding:
Text File  |  1998-07-03  |  274 b   |  17 lines

  1. program Array4;
  2.  
  3. uses
  4.   Forms,
  5.   Array4U in 'Array4U.pas' {Array4MainForm},
  6.   Array4U2 in 'Array4U2.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11. {$ifdef Win32}
  12.   Application.Initialize;
  13. {$endif}
  14.   Application.CreateForm(TArray4MainForm, Array4MainForm);
  15.   Application.Run;
  16. end.
  17.